home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / misc / math / convertor.lha / Install < prev    next >
Text File  |  1998-02-22  |  2KB  |  64 lines

  1. (complete 0)
  2. (if
  3.     (askbool
  4.         (prompt 'Do you want me to copy the French catalogs?')
  5.         (help 'Check this box if you want me to copy the French catalogs, to have Convertor in French.')
  6.         (choices 'Copy' 'Skip')
  7.         (default 1)
  8.     )
  9.     (copyfiles
  10.         (prompt 'Copying catalog')
  11.         (source 'catalogs/français/convertor.catalog')
  12.         (dest 'Locale:Catalogs/')
  13.         (optional nofail)
  14.     )
  15. )
  16. (complete 17)
  17. (set @default-dest
  18.     (askdir
  19.         (prompt "Set Convertor's directory")
  20.         (help 'Please set here where to Install Convertor.\nI will copy the documentation, the main program and the data there.')
  21.         (default @default-dest)
  22.     )
  23. )
  24. (complete 33)
  25. (copyfiles
  26.     (prompt 'Copying program')
  27.     (help 'I will now copy the program, the launch script and its icon.')
  28.     (choices 'convertor' 'convertor2.5' 'convertor2.5.info')
  29.     (source '')
  30.     (dest @default-dest)
  31. )
  32. (complete 50)
  33. (copyfiles
  34.     (prompt 'Copying Data')
  35.     (help 'I will now copy UnitData')
  36.     (source 'UnitData')
  37.     (dest @default-dest)
  38. )
  39. (complete 67)
  40. (copyfiles
  41.     (prompt 'Copying documentation')
  42.     (help 'Do you want me to copy the documentation ?')
  43.     (choices 'convertor.guide' 'convertor.guide.info' 'readme')
  44.     (source '')
  45.     (dest @default-dest)
  46.     (optional nofail)
  47. )
  48. (complete 83)
  49. (if
  50.     (askbool
  51.         (prompt 'Copy translation material ?')
  52.         (help 'Do you want me to copy the files used to translate Convertor in a new language?')
  53.         (choices 'Copy' 'Skip')
  54.         (default 0)
  55.     )
  56.     (copyfiles
  57.         (prompt )
  58.         (source 'Translation/')
  59.         (dest (tackon @default-dest 'Translation'))
  60.         (all)
  61.     )
  62. )
  63. (complete 100)
  64.